home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / procssng / ccs / ccs-11tl.lha / lbl / xview / xhist / makefile.src < prev    next >
Encoding:
Makefile  |  1993-03-12  |  615 b   |  41 lines

  1. #
  2. # makefile for user-contributed/lbl/xview/xhist
  3. #
  4.  
  5. PGMS = xhist.out
  6.  
  7. CPPFLAGS2 = -I$(XVIEWHOME)/include 
  8. #CFLAGS += -Bstatic
  9. LDFLAGS2 = -L$(XVIEWHOME)/lib
  10.  
  11. LINTFLAGS  = -h -target=$(MACHINE)
  12.  
  13. OBJECTS = comp_hist.o label.o load_i.o xhist.o xhist_ui.o help.o
  14.  
  15. .c.o:
  16.     $(COMPILEc) $< $(CPPFLAGS2)
  17.  
  18. install:    $(PGMS)
  19.  
  20. clean:    clean-pgm
  21. clean-all:    clean_all
  22.  
  23. man:
  24.  
  25. doc:
  26.  
  27. pristine:    pristine-pgm
  28.  
  29. xhist.out:    $(OBJECTS)
  30.     $(LINKc) $* $(OBJECTS) $(LIBRARIES) $(LDFLAGS2) $(LIBXVIEW)
  31.     mv $* $(DESTDIR)
  32.     @touch $@
  33.  
  34. FRC:
  35.  
  36. lint:
  37.     lint $(LINTFLAGS) $(SOURCESc)
  38.  
  39. #%_ui.c + %_ui.h + %_stubs.c + %.info: %.G
  40. #    $(GUIDEHOME)/bin/gxv $*
  41.